home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
textmstr.shr
/
tm.hqx
/
Source Code ƒ
/
U
/
Help_window.c
< prev
next >
Wrap
Text File
|
1991-05-09
|
3KB
|
110 lines
/* Help_window */
/* File name: Help_window */
/* Function: Handle a modal dialog */
/* History: 5/9/91 Original by Prototyper 3.0 */
#include "PCommonTextMaster.h" /* Common */
#include "Common_TextMaster.h" /* Common */
#include "PUtils_TextMaster.h" /* General Utilities */
#include "Utils_TextMaster.h" /* General Utilities */
#include "Help_window.h" /* This file */
/* ======================================================= */
/* Routine: D_Init_Help_window */
/* Purpose: This routine is called while when the program is first run. */
/* This is used for onetime initialization. */
void D_Init_Help_window()
{
} /* End of procedure */
/* ======================================================= */
/* Routine: D_Filter_Help_window */
/* Purpose: This routine is called while inside of the Modal Dialog filter */
/* theDialog is the dialog(alert) pointer */
/* theEvent is the event that we are to see if we should filter */
/* itemHit is the item we set if we handle the event ourselves */
Boolean D_Filter_Help_window(theDialog, theEvent, itemHit)
DialogPtr theDialog;
EventRecord *theEvent;
short *itemHit;
{
Boolean Filter_Help_window;
Filter_Help_window = FALSE; /* Let the modal routine handle it */
return(Filter_Help_window);
} /* End of function */
/* ======================================================= */
/* Routine: D_Refresh_Help_window */
/* Purpose: Refresh the modal dialog */
void D_Refresh_Help_window(theDialog)
DialogPtr theDialog;
{
} /* End of procedure */
/* ======================================================= */
/* Routine: D_Setup_Help_window */
/* Purpose: Setup the modal dialog */
void D_Setup_Help_window(theDialog)
DialogPtr theDialog;
{
} /* End of procedure */
/* ======================================================= */
/* Routine: D_Hit_Help_window */
/* Purpose: Hit in the modal dialog */
void D_Hit_Help_window( theDialog, itemHit, ExitDialog)
DialogPtr theDialog;
short itemHit;
Boolean *ExitDialog;
{
if (itemHit ==Res_Dlg_More) /* Handle the Button being pressed */
{
}
if (itemHit ==Res_Dlg_OK2) /* Handle the Button being pressed */
{
}
} /* End of procedure */
/* ======================================================= */
/* Routine: D_Exit_Help_window */
/* Purpose: Exit the modal dialog */
void D_Exit_Help_window(theDialog)
DialogPtr theDialog;
{
} /* End of procedure */
/* ======================================================= */